home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / pwrsearch_detection.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  67 lines

  1. #
  2. # Copyright (C) 2004 Tenable Network Security 
  3. #
  4. #
  5.  
  6. if(description)
  7. {
  8.  script_id(12018);
  9.  script_version("$Revision: 1.2 $");
  10.  
  11.  name["english"] = "POWER SEARCH detection";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is using the POWER SEARCH program.  
  17. You should ensure that:
  18. - the user intended to install POWER SEARCH (it is sometimes silently installed)
  19. - the use of POWER SEARCH matches your corporate mandates and security policies.
  20.  
  21. To remove this sort of software, you may wish to check
  22. out ad-aware or spybot. 
  23.  
  24. See also : http://pestpatrol.com/PestInfo/p/powersearch.asp 
  25. Solution : Uninstall this software
  26. Risk factor : High";
  27.  
  28.  
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "POWER SEARCH detection";
  33.  
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  39.  family["english"] = "Windows";
  40.  script_family(english:family["english"]);
  41.  
  42.  script_dependencies("smb_registry_full_access.nasl");
  43.  script_require_keys("SMB/registry_full_access");
  44.  
  45.  script_require_ports(139, 445);
  46.  exit(0);
  47. }
  48.  
  49.  
  50. # start the script
  51.  
  52. if ( ! get_kb_item("SMB/registry_full_access") ) exit(0);
  53.  
  54. path[0] = "software\classes\clsid\{4e7bd74f-2b8d-469e-d3fa-f27ba787ad2d}";
  55. path[1] = "software\microsoft\internet explorer\toolbar\{4e7bd74f-2b8d-469e-d3fa-f27ba787ad2d}";
  56.  
  57.  
  58.  
  59. include("smb_nt.inc");
  60.  
  61. for (i=0; path[i]; i++) {
  62.        val = registry_key_exists(key:path[i]);
  63.        if(val != NULL) {security_hole(kb_smb_transport()); exit(0); } 
  64. }
  65.  
  66.  
  67.